home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / advbas34.arc / ADVBAS.NEW < prev    next >
Encoding:
Text File  |  1987-06-25  |  11.4 KB  |  228 lines

  1. ADVBAS 3.4, 06/25/87: (Final Shareware Version)
  2.  
  3.      A bug in GETSCREEN and PUTSCREEN dealing with monochrome adapters has
  4.      been fixed.  Two programmer's aids have been added.  These operate on
  5.      files in interpreted BASIC format-- every line with a line number.
  6.      COMBLINE will combine lines for maximum density.  XREF will provide a
  7.      cross reference of variables or line numbers.  This is the final
  8.      shareware version of ADVBAS.  Its successor is a greatly expanded
  9.      library, ProBas, which is available from HCSI.  If you like ADVBAS,
  10.      you'll love ProBas!  For more information, see the manual, or call
  11.      HCSI at (301) 953-2191, from 9am - 6pm Eastern time.
  12.  
  13.  
  14. ADVBAS 3.3, 04/14/87:
  15.  
  16.      A new modem status routine, CARRIER, lets you check the Carrier
  17.      Detect.  To ease those data-entry woes, STRIPBLANKS allows you to
  18.      strip the blanks (and control characters) off either the left or
  19.      right side of a string, or both.  A bug in MAKEWINDOW dealing with
  20.      shadowed windows has been fixed.  A cross-reference listing of where
  21.      ADVBAS routines are located inside source and object files is now
  22.      included (ADVBAS.XRF).  The manual, ADVBAS.DOC, has been reformatted
  23.      to allow binding.  Note that my address is changing as of June 1.
  24.  
  25.  
  26. ADVBAS 3.2, 03/16/87:
  27.  
  28.      You can check for the existence of a subdirectory with SUBEXIST
  29.      (drive spec allowed).  COPYFILE will let you copy a file faster than
  30.      the system COPY command, and without having to do a SHELL.  A drive
  31.      status function, DISKSTAT, has been provided.  This allows you to
  32.      find out such information as the number of bytes in a cluster, the
  33.      amount of free space left on a drive, total space available on a
  34.      drive, etc. Routines to convert the time or date from numbers to a
  35.      string and vice versa have been added (DATEN2S, DATES2N, TIMEN2S, and
  36.      TIMES2N).  For AT machines only, GETEXTM will return the amount of
  37.      extended memory in kilobytes.  BLOCKMOVE will let you move a block of
  38.      memory from one location to another.  DATASEG will retrieve the value
  39.      of the current data segment.
  40.  
  41.  
  42. ADVBAS 3.1, 03/07/87:
  43.  
  44.      Time/date compression has been added.  DATE2INT and INT2DATE allow
  45.      you to convert a date to a single integer and back.  TIME2INT and
  46.      INT2TIME do the same with the time.  Given a month number, MONTH will
  47.      return the name of the month.  SPEAKER will enable you to toggle
  48.      sound effects on and off, without changing the timing of the affected
  49.      routines.  TINSTR lets you search a string for a character of a given
  50.      type, rather than a specific character.  You can search for any
  51.      combination of Alphabetic, Numeric, Symbolic, Control, Graphics, or
  52.      Blank characters, or their opposites.  The DTR function lets you
  53.      turn the communications signal DTR on or off.
  54.  
  55.  
  56. ADVBAS 3.0, 02/04/87: (Second Anniversary Edition)
  57.  
  58.      Many of the existing ADVBAS routines have been further optimized.
  59.      MMCHECK will now return the number of mouse buttons available as well
  60.      as a mouse status check.  GETKBD and SETKBD allow you to get/set the
  61.      states of the keyboard toggles: insert, caps lock, num lock, and
  62.      scroll lock.  GETCRT tells you whether the display is color or
  63.      monochrome.  CLRKBD clears any pending characters from the keyboard
  64.      buffer.  DELAY18TH and DELAY allow you to delay for a given time
  65.      interval, independent of machine type.  CALCATTR calculates the
  66.      color/attribute for routines such as XQPRINT.  Unlike the BASIC
  67.      formula it replaces, it allows use of the "blink" attribute.  SHIFTL
  68.      and SHIFTR let you perform binary shifts on integers.  It is now
  69.      possible to have low-res graphics on any monitor, using the SETPOINT,
  70.      RESETPOINT and TESTPOINT routines.  These give you 80 column by 50
  71.      row graphics in text mode.  Finally, MAKEWINDOW has been converted
  72.      from BASIC to a normal ADVBAS routine (in assembly language) for
  73.      extra speed and convenience.
  74.  
  75.  
  76. ADVBAS 2.9, 01/12/87:
  77.  
  78.      Mouse control has been added.  You can see if a mouse exists, get or
  79.      set the location of the mouse cursor, check the status of the mouse
  80.      buttons in two different ways, and set a legal range for the mouse
  81.      cursor, using the MM series of functions (MMBUTTON, MMCHECK, MMCLICK,
  82.      MMGETLOC, MMSETLOC, MMSETRANGE).  Expanded memory checking has been
  83.      added-- you can see if it exists, and if so, how much memory there is
  84.      and how much of it is free (GETLIMM).  Finally, a BASIC subprogram to
  85.      generate pop-up windows (MAKEWINDOW) has been included.  This is
  86.      based on Dave Evers' fine BASWIND routine, with assorted improvements.
  87.      The screen routines QPRINT, XQPRINT, SCRSAVE, SCRREST, GETSCREEN and
  88.      PUTSCREEN have been modified to automatically use high-speed mode
  89.      with monochrome adapters.  Their speed with color adapters has also
  90.      been increased.  Object code for all routines has been included,
  91.      along with information on automating library production.  This will
  92.      allow y'all to produce custom libraries using either the standard LIB
  93.      format or the QuickBASIC 2.0 BUILDLIB format.  This has been added
  94.      for your convenience-- please do not abuse it!  You may create custom
  95.      libraries for your own personal use.  You may -not- distribute them!
  96.  
  97.  
  98. ADVBAS 2.8, 12/28/86:
  99.  
  100.      Assorted file control functions have been added.  MLOAD is a BLOAD
  101.      command for compilers which don't include it.  EXIST lets you test
  102.      for the existence of a given file.  A set of new file I/O functions
  103.      allow low-level control of file access.  Among other advantages,
  104.      these functions allow file handling in subprograms (since error codes
  105.      are returned at the time of error, rather than triggering an error
  106.      trap) and support file-level networking/multitasking control (whereas
  107.      BASIC only supports record-level control).  These functions include
  108.      FCREATE and FOPEN to open files, FREAD and FWRITE to access them,
  109.      FSETEND and FSETREC to move the file pointer, and FCLOSE to close the
  110.      file.
  111.  
  112.  
  113. ADVBAS 2.7, 10/18/86:
  114.  
  115.      A new version of the library has been added which is fully compatible
  116.      with the QuickBASIC v2.0 programming environment.  Much of ADVBAS has
  117.      been overhauled to make it faster and more compact.  New functions:
  118.      EQUIPMENT will give you information about the hardware you're running
  119.      on (memory and number of various kinds of ports).  PRINTSCREEN
  120.      duplicates the function of pressing Shift-PrtSc on the keyboard.
  121.      GETSCREEN and PUTSCREEN are new, comprehensive screen save/restore
  122.      functions.  GETSCREEN allows you to save any part of the screen to an
  123.      array, using any screen page, with either flicker-free or fast access
  124.      methods.  PUTSCREEN is the corresponding restore-screen function.  It
  125.      allows you to put a saved area onto any part of the screen, any
  126.      screen page, with either flicker-free or fast access.  DOSINKEY lets
  127.      you get keypresses from the DOS standard input device.  Combined with
  128.      DMPRINT, this allows you to use such DOS features as I/O redirection
  129.      and CTTY with compiled BASIC programs.
  130.  
  131.  
  132. ADVBAS 2.6, 9/19/86:
  133.  
  134.      XQPRINTD will allow you to print to the screen using direct screen
  135.      writes.  This is the fastest possible print method, but will produce
  136.      snow on some color displays if you are printing to the active display
  137.      page.  SCRRESTP and SCRSAVEP will allow you to save and restore any
  138.      screen page to/from an array.  SCRRESTPD and SCRSAVEPD will do the
  139.      same using direct screen reads/writes (see note at XQPRINTD).
  140.      SETCOMM will allow you to reset the parameters on an open communi-
  141.      cations "file" without having to close the file (and thus drop the
  142.      DTR signal) first.  In addition, it lets you set the baud rate to
  143.      speeds beyond the normal limitation of 9600 bps.
  144.  
  145.  
  146. ADVBAS 2.5, 8/04/86:
  147.  
  148.      DMPRINT now allows screen display directly through MS-DOS output.
  149.      This differs from MPRINT, which uses some BIOS routines.  It is a
  150.      less sophisticated (and hence faster) routine than MPRINT.  XQPRINT
  151.      and RECOLOR screen flicker (on color monitors) has been wiped out,
  152.      thanks to Steven Gibson.  This and the other direct-access screen
  153.      routines have been modified so as to cause less interference with
  154.      interrupts.  The manual, ADVBAS.DOC, has been reformatted so it will
  155.      print correctly on most printers.
  156.  
  157.  
  158. ADVBAS 2.4, 7/21/86:
  159.  
  160.      Functions have been added to convert numbers from one base to another
  161.      (DEC2ANY, ANY2DEC), and incidentally to allow use of unsigned
  162.      integers in your programs, with some twiddling.  Space compression
  163.      has been added via BSQ, BUSQLEN and BUSQ, which allow you to compress
  164.      text information.  Space savings range from a reliable 16% for normal
  165.      text, to up around 50% for files with many blanks (such as structured
  166.      C, Pascal, or assembly files).
  167.  
  168.  
  169. ADVBAS 2.3, 6/28/86:
  170.  
  171.      You can now set a file's time/date stamp using SETFTD.  A host of
  172.      functions which allow you access to disk directories has been added,
  173.      giving the ability to search for a file using wildcards, or to
  174.      duplicate the DOS directory command: FINDFIRSTF, FINDNEXTF, GETNAMEF,
  175.      GETATTRF, GETDATEF, GETTIMEF, GETSIZEF.  The manual has been revised
  176.      to list functions in alphabetical order, allowing the elimination of
  177.      the index.  This file, ADVBAS.NEW, is now listed in reverse
  178.      chronological order, so the newest things come first instead of at
  179.      the end.
  180.  
  181.  
  182. ADVBAS 2.2, 6/20/86:
  183.  
  184.      Character insert/delete support for windows was added via MINSCHR and
  185.      MDELCHR.  This can also be used to simulate left and right scrolling
  186.      of a window.  The day of the week can now be gotten using WEEKDAY.
  187.      The most interesting new function is SOUNDEX, which returns the
  188.      soundex code of a word.  Soundex codes allow you to identify similar
  189.      sounding words, so that you could do a phone directory search that
  190.      matches on the sound of a name rather than the precise spelling, for
  191.      instance.
  192.  
  193.  
  194. ADVBAS 2.1, 6/14/86:
  195.  
  196.      Window handling was added.  The MPRINT and MPRINTC routines can now
  197.      be set to conform to screen windows, via the MWINDOW function.
  198.  
  199.  
  200. ADVBAS 2.0, 3/28/86:
  201.  
  202.      Four functions were added.  KEYPRESS tells you if a key is waiting in
  203.      the keyboard input buffer.  RECOLOR quickly resets all characters on
  204.      the screen with a given color/attribute to a new color/attribute
  205.      (text mode only).  SETMATI sets the first "x" elements of an integer
  206.      array to a given value.  ADDMATI adds or subtracts a given value from
  207.      the first "x" elements of an integer array.  The documentation now
  208.      includes notes on how PC-compatible a machine needs to be before any
  209.      given routine will work on it.
  210.  
  211.  
  212. ADVBAS 1.9, 12/12/85:
  213.  
  214.      XLATE will now work with a string as well as single characters.
  215.      MPRINT will work with a string, replacing the old MPRINTC which could
  216.      only print out a single character at a time.  The functions
  217.      STRIPRANGE, REVERSE, LROTATE, RROTATE, EXTRACT, READBITF and
  218.      WRITEBITF have been added.  The documentation now includes a
  219.      reference listing of the ADVBAS functions.
  220.  
  221.  
  222. ADVBAS 1.8:  Not released to the public.
  223.  
  224.  
  225. ADVBAS 1.7, 11/28/85:
  226.  
  227.      The functions DELCHR and INSCHR have been added.
  228.